home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / telecomm / misc / cyberpager-1p5.lha / CyberPager / source / include / clib / pager-support_protos.h
Encoding:
C/C++ Source or Header  |  1993-06-15  |  1.1 KB  |  27 lines

  1. #ifndef PAGER_LIB_H
  2. #include "/pager_lib.h"
  3. #endif
  4.  
  5. APTR AllocPagerHandle(STRPTR logProgram);
  6. void FreePagerHandle(APTR handle);
  7. void ULogA(APTR handle, LONG level, STRPTR fmt, LONG *args);
  8. void ULog(APTR handle, LONG level, STRPTR fmt, ...);
  9. void SetLogLevel(APTR handle, LONG level);
  10. void SetLogService(APTR handle, STRPTR serviceName);
  11. void SetLogWho(APTR handle, STRPTR whoName);
  12. BOOL LockFile(APTR handle, STRPTR fileName);
  13. void UnLockFile(APTR handle, STRPTR fileName);
  14. void UnLockFiles(APTR handle);
  15. STRPTR FindPagerConfig(APTR handle, STRPTR configEntryName);
  16. STRPTR FindPagerConfigDefault(APTR handle, STRPTR configEntryName, STRPTR defaultValue);
  17. STRPTR FreePagerConfig(STRPTR configEntry);
  18. BOOL PagerConfigYesNo(STRPTR configEntry);
  19. PagerService_t *FindPagerService(APTR handle, STRPTR serviceName);
  20. void FreePagerService(PagerService_t *service);
  21. PagerAlias_t *FindPagerAlias(APTR handle, STRPTR aliasName);
  22. void FreePagerAlias(PagerAlias_t *alias);
  23. LONG GetSequenceNumber(APTR handle, UWORD increment);
  24. STRPTR SequenceToName(STRPTR buffer, LONG sequence);
  25. STRPTR NameInSpool(APTR handle, STRPTR name);
  26. void FreeNameInSpool(STRPTR name);
  27.